home *** CD-ROM | disk | FTP | other *** search
/ Aminet 37 / Aminet 37 (2000)(Schatztruhe)[!][Jun 2000].iso / Aminet / dev / lang / sofa.lha / sofa / smalleiffel / lib_se / call.e < prev    next >
Text File  |  2000-03-25  |  5KB  |  173 lines

  1. --          This file is part of SmallEiffel The GNU Eiffel Compiler.
  2. --          Copyright (C) 1994-98 LORIA - UHP - CRIN - INRIA - FRANCE
  3. --            Dominique COLNET and Suzanne COLLIN - colnet@loria.fr
  4. --                       http://SmallEiffel.loria.fr
  5. -- SmallEiffel is  free  software;  you can  redistribute it and/or modify it
  6. -- under the terms of the GNU General Public License as published by the Free
  7. -- Software  Foundation;  either  version  2, or (at your option)  any  later
  8. -- version. SmallEiffel is distributed in the hope that it will be useful,but
  9. -- WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  10. -- or  FITNESS FOR A PARTICULAR PURPOSE.   See the GNU General Public License
  11. -- for  more  details.  You  should  have  received a copy of the GNU General
  12. -- Public  License  along  with  SmallEiffel;  see the file COPYING.  If not,
  13. -- write to the  Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  14. -- Boston, MA 02111-1307, USA.
  15. --
  16. deferred class CALL
  17.    --
  18.    -- For all sort of feature calls with result value.
  19.    -- So it does not include procedure calls (see PROC_CALL).
  20.    --
  21.    -- Classification: CALL_0 when 0 argument, CALL_1 when
  22.    -- 1 argument and CALL_N when N arguments.
  23.    --
  24.  
  25. inherit CALL_PROC_CALL; EXPRESSION;
  26.  
  27. feature
  28.  
  29.    is_writable: BOOLEAN is false;
  30.  
  31.    is_current: BOOLEAN is false;
  32.  
  33.    is_manifest_string: BOOLEAN is false;
  34.  
  35.    is_manifest_array: BOOLEAN is false;
  36.  
  37.    is_result: BOOLEAN is false;
  38.  
  39.    is_void: BOOLEAN is false;
  40.  
  41.    c_simple: BOOLEAN is false;
  42.  
  43.    static_result_base_class: BASE_CLASS is
  44.       local
  45.          bc: BASE_CLASS;
  46.          e_feature: E_FEATURE;
  47.          rt: TYPE;
  48.          cn: CLASS_NAME;
  49.       do
  50.          bc := target.static_result_base_class;
  51.          if bc /= Void then
  52.             e_feature := bc.e_feature(feature_name);
  53.             if e_feature /= Void then
  54.                rt := e_feature.result_type;
  55.                if rt /= Void then
  56.                   cn := rt.static_base_class_name;
  57.                   if cn /= Void then
  58.                      Result := cn.base_class;
  59.                   end;
  60.                end;
  61.             end;
  62.          end;
  63.       end;
  64.          
  65.    frozen mapping_c_target(formal_type: TYPE) is
  66.       local
  67.          flag: BOOLEAN;
  68.          actual_type: like result_type;
  69.       do
  70.          flag := cpp.call_invariant_start(formal_type);
  71.          actual_type := result_type.run_type;
  72.          if actual_type.is_reference then
  73.             if formal_type.is_reference then
  74.                -- Reference into Reference :
  75.                formal_type.mapping_cast;
  76.                cpp.put_character('(');
  77.                compile_to_c;
  78.                cpp.put_character(')');
  79.             else
  80.                -- Reference into Expanded :
  81.                compile_to_c;
  82.             end;
  83.          else
  84.             if formal_type.is_reference then
  85.                -- Expanded into Reference :
  86.                compile_to_c;
  87.             else
  88.                -- Expanded into Expanded :
  89.                if formal_type.need_c_struct then
  90.                   cpp.put_character('&');
  91.                   cpp.put_character('(');
  92.                   compile_to_c;
  93.                   cpp.put_character(')');
  94.                else
  95.                   compile_to_c;
  96.                end;
  97.             end;
  98.          end;
  99.          if flag then
  100.             cpp.call_invariant_end;
  101.          end;
  102.       end;
  103.  
  104.    frozen mapping_c_arg(formal_arg_type: TYPE) is
  105.       do
  106.          compile_to_c;
  107.       end;
  108.  
  109.    frozen c_declare_for_old is
  110.       do
  111.          target.c_declare_for_old;
  112.          if arg_count > 0 then
  113.             arguments.c_declare_for_old;
  114.          end;
  115.       end;
  116.  
  117.    frozen compile_to_c_old is
  118.       do
  119.          target.compile_to_c_old;
  120.          if arg_count > 0 then
  121.             arguments.compile_to_c_old;
  122.          end;
  123.       end;
  124.  
  125.    frozen compile_to_jvm_old is
  126.       do
  127.          target.compile_to_jvm_old;
  128.          if arg_count > 0 then
  129.             arguments.compile_to_jvm_old;
  130.          end;
  131.       end;
  132.  
  133.    print_as_target is
  134.       do
  135.          pretty_print;
  136.          fmt.put_character('.');
  137.       end;
  138.  
  139.    frozen compile_target_to_jvm is
  140.       do
  141.          standard_compile_target_to_jvm;
  142.       end;
  143.  
  144.    frozen compile_to_jvm_into(dest: TYPE): INTEGER is
  145.       do
  146.          Result := standard_compile_to_jvm_into(dest);
  147.       end;
  148.  
  149.    frozen jvm_assign is
  150.       do
  151.       end;
  152.  
  153.    frozen stupid_switch(r: ARRAY[RUN_CLASS]): BOOLEAN is
  154.       do
  155.          Result := call_proc_call_stupid_switch(r);
  156.          if Result then
  157.             Result := not result_type.is_native_array;
  158.          end;
  159.       end;
  160.  
  161. feature {NONE}
  162.  
  163.    frozen run_feature_has_result is
  164.       do
  165.          if run_feature.result_type = Void then
  166.             eh.add_position(run_feature.start_position);
  167.             eh.add_position(feature_name.start_position);
  168.             fatal_error("Feature found is a procedure.");
  169.          end;
  170.       end;
  171.  
  172. end -- CALL
  173.